home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
man
/
man-part1
/
cat1
/
break.1
< prev
next >
Wrap
Text File
|
1999-09-16
|
380b
|
67 lines
break(1) Scilab Function break(1)
NAME
break - keyword to interrupt loops
DESCRIPTION
Inside a for or while loop, the command break forces the end of the loop.
EXAMPLE
k=0; while 1==1, k=k+1; if k > 100 then break,end; end
SEE ALSO
while, ifthenelse, for, abort, return